home *** CD-ROM | disk | FTP | other *** search
/ Transformers: Revenge of …he Game: Press Kit (USA) / Transformers - Revenge of the Fallen - The Game - Press Kit (USA).bin / Transformers.swf / scripts / fl / video / QueuedCommand.as < prev    next >
Text File  |  2009-06-19  |  807b  |  37 lines

  1. package fl.video
  2. {
  3.    public class QueuedCommand
  4.    {
  5.       
  6.       public static const LOAD:uint = 1;
  7.       
  8.       public static const STOP:uint = 3;
  9.       
  10.       public static const PLAY_WHEN_ENOUGH:uint = 5;
  11.       
  12.       public static const PLAY:uint = 0;
  13.       
  14.       public static const PAUSE:uint = 2;
  15.       
  16.       public static const SEEK:uint = 4;
  17.        
  18.       
  19.       public var isLive:Boolean;
  20.       
  21.       public var type:uint;
  22.       
  23.       public var time:Number;
  24.       
  25.       public var url:String;
  26.       
  27.       public function QueuedCommand(param1:uint, param2:String, param3:Boolean, param4:Number)
  28.       {
  29.          super();
  30.          this.type = param1;
  31.          this.url = param2;
  32.          this.isLive = param3;
  33.          this.time = param4;
  34.       }
  35.    }
  36. }
  37.